From e083bd7920986b03874b2dd205fb1fd968becec8 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Tue, 22 Nov 2022 12:54:42 +0000 Subject: [PATCH] Apply trivial review suggestions --- gtk/gtkaccessible.c | 7 +++++-- gtk/gtkstack.c | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/gtk/gtkaccessible.c b/gtk/gtkaccessible.c index 03d3afad6c..848d9a0bd9 100644 --- a/gtk/gtkaccessible.c +++ b/gtk/gtkaccessible.c @@ -832,8 +832,11 @@ gtk_accessible_bounds_changed (GtkAccessible *self) * Since: 4.10 */ gboolean -gtk_accessible_get_bounds (GtkAccessible *self, - int *x, int *y, int *width, int *height) +gtk_accessible_get_bounds (GtkAccessible *self, + int *x, + int *y, + int *width, + int *height) { return GTK_ACCESSIBLE_GET_IFACE (self)->get_bounds (self, x, y, width, height); } diff --git a/gtk/gtkstack.c b/gtk/gtkstack.c index d02cf8aca7..3e99575d29 100644 --- a/gtk/gtkstack.c +++ b/gtk/gtkstack.c @@ -290,7 +290,7 @@ gtk_stack_page_accessible_get_bounds (GtkAccessible *accessible, if (page->widget != NULL) return gtk_accessible_get_bounds (GTK_ACCESSIBLE (page->widget), x, y, width, height); else - return false; + return FALSE; } static void -- 2.30.2